home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi 2.0 - Programmer's Utilities Power Pack
/
Delphi 2.0 Programmer's Utilities Power Pack.iso
/
a_to_d
/
dbplus2
/
demoproj.dpr
< prev
next >
Wrap
Text File
|
1996-09-15
|
308b
|
16 lines
program Demoproj;
uses
Forms,
Demomain in 'DEMOMAIN.PAS' {Form1},
Subcat in 'SUBCAT.PAS' {SubCatDlg};
{$R *.RES}
begin
Application.Title := 'TDBLookUpComboPlus Demo ';
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TSubCatDlg, SubCatDlg);
Application.Run;
end.